home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1997 May / PC Plus Super CD Issue 127 (May 1997).iso / install / disk15 / cbtsampl.pak / CBT_PROJ.DPR next >
Encoding:
Text File  |  1995-08-24  |  159 b   |  13 lines

  1. program Cbt_proj;
  2.  
  3. uses
  4.   Cbt_unit in 'CBT_UNIT.PAS' {Form1};
  5.  
  6. {$R *.RES}
  7.  
  8. begin
  9.   Application.CreateForm(TForm1, Form1);
  10.   Application.Run;
  11. end.
  12.  
  13.